home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / smaltalk / manchest.lha / MANCHESTER / manchester / 4.1 / Project-closing.st < prev    next >
Text File  |  1993-07-24  |  1KB  |  35 lines

  1. "    NAME        Project-closing
  2.     AUTHOR        miw@cs.man.ac.uk (Mario Wolczko)
  3.     FUNCTION    Warn if closing project will discard change set
  4.     ST-VERSION    4.1
  5.     PREREQUISITES    
  6.     CONFLICTS    Project>changeRequest
  7.     DISTRIBUTION    world
  8.     VERSION        1
  9.     DATE         1993
  10. SUMMARY
  11. Up to 4.1, if you tried to close a project with a non-empty change
  12. set, you were asked to confirm.  For some reason this was removed from
  13. 4.1.  This puts it back.
  14.  
  15. Mario Wolczko
  16.  
  17. Dept. of Computer Science   Internet: mario@cs.man.ac.uk
  18. The University              uucp: uknet!!man.cs!!mario
  19. Manchester M13 9PL          JANET: mario@uk.ac.man.cs
  20. U.K.                        Tel: +44-61-275 6146  (FAX: 6236)
  21. ______the mushroom project___________________________________
  22.  
  23. "
  24. 'From Objectworks\Smalltalk(R), Release 4.1 of 15 April 1992 on 24 June 1993 at 6:57:16 pm'!
  25.  
  26.  
  27.  
  28. !Project methodsFor: 'changing'!
  29.  
  30. changeRequest
  31.     ^super changeRequest
  32.     and: [projectChangeSet isEmpty
  33.             or: [DialogView confirm: 'Change set is not empty.  Are you
  34. certain that you want to close?']]! !
  35.